home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / View.dxr / 00005_click mission example.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  532 b   |  18 lines

  1. on mouseDown
  2.   global gMissionExample
  3.   if voidp(gMissionExample) then
  4.     set gMissionExample to 0
  5.   end if
  6.   set vArtSprite to 10
  7.   if the loc of sprite vArtSprite = point(320, 240) then
  8.     set the loc of sprite vArtSprite to point(-999, -999)
  9.   else
  10.     set gMissionExample to gMissionExample + 1
  11.     if gMissionExample > 3 then
  12.       set gMissionExample to 1
  13.     end if
  14.     set the member of sprite vArtSprite to member ("mission" & string(gMissionExample))
  15.     set the loc of sprite vArtSprite to point(320, 240)
  16.   end if
  17. end
  18.